home *** CD-ROM | disk | FTP | other *** search
- // Persistence of Vision Raytracer v1.0
- // Shape Test file
-
- include "colors.inc"
-
- camera {
- location <0.0 13 -21 >
- look_at <0 8 0>
- }
-
- object {
- light_source { <40 100 -100>
- color White
- }
- }
-
- include "plant.inc"
- composite{
- plant
- }
-
- object { plane { <0.0 1.0 0.0> 0.0 }
- texture {
- color red 1 green 0.75 blue 0.3
- ambient 0.3
- diffuse 0.7
- }
- }
-
-